home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / batchut / sask135.zip / GO.BAT < prev    next >
DOS Batch File  |  1992-04-26  |  318b  |  13 lines

  1. echo off
  2. sask "Would you like to read the FILES.TXT file (Y/N)? " yn
  3. if ERRORLEVEL = 99 goto ERROR
  4. if ERRORLEVEL = 2  goto OUT
  5. type FILES.TXT
  6. goto OUT
  7. :Error
  8. echo You pressed Ctrl-C or Ctrl-Break or an internal error occurred
  9. :Out
  10. echo Please be sure to read the documentation, and run DEMO.
  11. pause
  12. echo on
  13.